home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / dev / gcc / gcc270cp.lha / gnu / lib / g++-include / string.h < prev    next >
C/C++ Source or Header  |  1995-07-28  |  628b  |  20 lines

  1. // -*- C++ -*- forwarding header.
  2. // This file is part of the GNU ANSI C++ Library.
  3.  
  4. #ifndef __CP_STRING_H__
  5. #include <cstring>
  6.  
  7. #if _G_NS
  8. using std::memchr;   using std::memcmp;   using std::memcpy;
  9. using std::memmove;  using std::memset;
  10. using std::strcoll;  using std::strcat;   using std::strchr;
  11. using std::strcmp;   using std::strcpy;   using std::strcspn;
  12. using std::strerror; using std::strlen;   using std::strncat;
  13. using std::strncmp;  using std::strncpy;  using std::strpbrk;
  14. using std::strrchr;  using std::strspn;   using std::strstr;
  15. using std::strtok;   using std::strxfrm;
  16. #endif
  17.  
  18. #define __CP_STRING_H__
  19. #endif
  20.